home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / sossnt.zip / SOSSNT / SRC / GENERAL.H < prev    next >
C/C++ Source or Header  |  1993-02-27  |  304b  |  26 lines

  1. /*
  2.  *  general.h -- utility defs and routines header
  3.  */
  4.  
  5. extern int errno;
  6.  
  7. #ifndef bool_t
  8. #define bool_t int
  9. #endif
  10.  
  11. #ifndef TRUE
  12. #define TRUE 1
  13. #endif
  14.  
  15. #ifndef FALSE
  16. #define FALSE 0
  17. #endif
  18.  
  19. #ifndef caddr_t
  20. #define caddr_t char *
  21. #endif
  22.  
  23. #ifndef dev_t
  24. #define dev_t int
  25. #endif
  26.